body.no-scroll {
    overflow: hidden;
}

.preheader {
    width: 100%;
    height: 25px;
    background: #FFD3E1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preheader__text {
    font-family: 'Geologica';
    font-size: 8px;
    color: #404040;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 200;
}

.header {
    margin-top: 10px;
    position: sticky;
    top: 10px;
    z-index: 150;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header__inner {
    width: calc(100% - 40px);
    max-width: 100%;
    position: relative;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    background: rgba(255, 228, 238, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0 40px;
    transition: height 0.2s ease, padding 0.2s ease;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 25px;
    width: auto;
    display: block;
}

.header__dropdown {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.header__dropdown-text {
    font-family: 'Geologica';
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
    color: #404040;
}

.header__dropdown-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.header__dropdown:hover .header__dropdown-icon {
    transform: translateY(1px);
}

.header__dropdown-icon--rotated {
    transform: rotate(180deg);
}

.header__submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 332px;
    background: rgba(255, 228, 238, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 30px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    z-index: 100;
}

.header__submenu--open {
    opacity: 1;
    visibility: visible;
}

.header__submenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header__submenu-link {
    font-family: "Geologica";
    font-size: 12px;
    color: #404040;
    text-decoration: none;
    display: inline-block;
    font-weight: 200;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__lang {
    position: relative;
}

.header__lang-btn {
    width: 40px;
    height: 40px;
    background: #E8ABBF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bounded', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #404040;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.header__lang-btn:hover {
    background: #dd99b0;
}

.header__lang-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: rgba(255, 228, 238, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    z-index: 100;
}

.header__lang-menu--open {
    opacity: 1;
    visibility: visible;
}

.header__lang-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.header__lang-link {
    font-family: "Manrope";
    font-size: 12px;
    color: #404040;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.header__lang-link--active {
    color: #D66584;
    pointer-events: none;
}


.header__primary-btn {
    width: 145px;
    height: 40px;
    background: #D66584;
    border-radius: 5px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: #404040;
    cursor: pointer;
    transition: background 0.2s;
}

.header__primary-btn:hover {
    background: #c45372;
}

.header__burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 0;
}

.header__mobile-logo {
    display: none;
}

.header__mobile-anketa {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.overlay--active {
    visibility: visible;
    opacity: 1;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    background: rgba(255, 228, 238, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.drawer--open {
    transform: translateX(0);
}

.drawer__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 42px 20px 0 20px;
    margin-bottom: 76px;
}

.drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0;
}

.drawer__logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.drawer__nav {
    padding: 0 30px;
}

.drawer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer__link {
    font-family: 'Geologica';
    font-size: 16px;
    color: #404040;
    text-decoration: none;
    display: block;
    font-weight: 200;
}

.drawer__socials {
    margin: 44px 30px 0 30px;
}

.drawer__socials-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #D66584;
    font-size: 14px;
    font-weight: 600;
}

.drawer__social-link {
    display: inline-block;
    text-decoration: none;
    color: #D66584;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.drawer__button {
    margin: 44px 30px 40px 30px;
    width: calc(100% - 60px);
    height: 47px;
    background: #D66584;
    border: 1px solid #D66584;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
}
.drawer__button:hover{
    color: #D66584;
}

@media (max-width: 1440px) {
    .header {
        top: 10px;
    }
    .header__inner {
        width: calc(100% - 20px);
    }
    .header__container {
        height: 60px;
        padding: 0 30px;
    }
    .header__left {
        gap: 36px;
    }
    .header__submenu {
        left: 318px;
    }
}

@media (max-width: 768px) {
    .preheader {
        height: 24px;
    }
    .preheader__text {
        font-size: 9px;
        letter-spacing: 2px;
    }
    .header {
        top: 6px;
    }
    .header__inner {
        width: calc(100% - 10px);
    }
    .header__container {
        height: 60px;
        padding: 0 15px;
        background: rgba(255, 228, 238, 0.8);
    }
    .header__left {
        gap: 10px;
    }
    .header__dropdown {
        display: none;
    }
    .header__logo-img {
        display: none;
    }
    .header__mobile-logo {
        display: block;
        height: 36px;
        width: auto;
    }
    .header__burger {
        display: flex;
        align-items: center;
    }
    .header__right {
        gap: 10px;
    }
    .header__primary-btn {
        display: none;
    }
    .header__mobile-anketa {
        display: flex;
        width: 90px;
        height: 40px;
        background: #BA5470;
        border-radius: 5px;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 10px;
        text-transform: uppercase;
        color: #F4CFD8;
        border: none;
        cursor: pointer;
    }
    .header__mobile-anketa:hover {
        background: #a3435f;
    }
    .header__container {
        justify-content: space-between;
    }
    .header__submenu {
        left: -15px;
    }
}

@media (max-width: 420px) {
    .header__mobile-logo {
        height: 20px;
    }
}